(with-local-quit): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sat, 31 Jul 2004 03:39:49 +0000 (03:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 31 Jul 2004 03:39:49 +0000 (03:39 +0000)
lisp/subr.el

index 1e30a127f714af707842abec0fc66cbcd1025054..8282e3a9316bf301312a791f201b0a38470592aa 100644 (file)
@@ -1894,7 +1894,10 @@ See also `with-temp-file' and `with-output-to-string'."
         (kill-buffer nil)))))
 
 (defmacro with-local-quit (&rest body)
-  "Execute BODY with `inhibit-quit' temporarily bound to nil."
+  "Execute BODY, allowing quits to terminate BODY but not escape further.
+When a quit terminates BODY, `with-local-quit' requests another quit when
+it finishes.  That quit will be processed in turn, the next time quitting
+is again allowed."
   (declare (debug t) (indent 0))
   `(condition-case nil
        (let ((inhibit-quit nil))